library(tidyverse)
library(yarrr)
library(wordcloud)
library(wordcloud2)
library(bibliometrix)
library(tidyverse)
library(igraph)
library(tidygraph)
library(ggraph)
library(EGAnet)
library(papaja)
library(janitor)
library(gtools)
library(data.table)
library(readr)
library(ggplot2)
library(HiveR)
library(RBioFabric) #Installation: install.packages("remotes")
#remotes::install_github("wjrl/RBioFabric")
Libraries
Packages used across documents.
Read in Data
Date of downloaded BibTex files: 16/03/2023
BibTex files available here: (insert dropbox link here?)
Scopus
2000 max BibTex for export
All Open Access
Search terms for all open access, scopus:
AFFIL(northumbria AND university) AND (OA (all)) AND (LIMIT-TO(PUBYEAR, 2023) OR LIMIT-TO(PUBYEAR,2022))
<- convert2df(file = "scopus2000alloa.bib" , dbsource = "scopus", format = "bibtex")
scopus1000df <- convert2df(file = "scopusall30.bib" , dbsource = "scopus", format = "bibtex")
scopusRESTdf <- merge(scopusRESTdf, scopus1000df, all = TRUE) #Scopus has a 2000 limit for BibTex files so All Open Access needed to be downloaded into two .bib files and then merged to one scopus_all_oa
Green Open Access
Search terms for all green open access, scopus:
AFFIL(northumbria AND university) AND OA(repository) AND ( LIMIT-TO ( PUBYEAR,2023) OR LIMIT-TO ( PUBYEAR,2022))
<- "scopusGreen.bib"
file
<- convert2df(file = file , dbsource = "scopus", format = "bibtex") scopus_green
Green Final Open Access
Search terms for final green open access, scopus:
AFFIL(northumbria AND university) AND OA(repositoryvor) AND ( LIMIT-TO ( PUBYEAR,2023) OR LIMIT-TO ( PUBYEAR,2022))
<- "scopusGREENFINALOA.bib"
file
<- convert2df(file = file , dbsource = "scopus", format = "bibtex") scopus_green_final
Green Accepted Open Access
Search terms for accepted green open access, scopus:
AFFIL(northumbria AND university) AND OA(repositoryam) AND NOT OA(repositoryvor) AND ( LIMIT-TO ( PUBYEAR,2023) OR LIMIT-TO ( PUBYEAR,2022))
<- "scopusGREENACCEPTEDOA.bib"
file
<- convert2df(file = file , dbsource = "scopus", format = "bibtex") scopus_green_accepted
Not Green Open Access
Search terms for all other types of open access (gold, hybrid gold and bronze), scopus:
AFFIL(northumbria AND university) AND NOT OA(repository) AND ( LIMIT-TO ( PUBYEAR,2023) OR LIMIT-TO ( PUBYEAR,2022))
<- "scopusNOTGREEN.bib"
file
<- convert2df(file = file , dbsource = "scopus", format = "bibtex") scopus_not_green
Web of Science
1000 max BibTex for export
All Open Access
Link to query for all open access:
<- convert2df(file = "wosALLOA1000.bib" , dbsource = "wos", format = "bibtex")
wos1000df <- convert2df(file = "wosALLrest.bib" , dbsource = "wos", format = "bibtex")
wosRESTdf <- merge(wosRESTdf, wos1000df, all = TRUE)#Web of science has a 1000 limit for BibTex files so All Open Access needed to be downloaded into two .bib files and then merged to one wos_all_oa
All Green Open Access
Link to query for all open access:
<- "wosAllGreen.bib"
file
<- convert2df(file = file , dbsource = "wos", format = "bibtex") wos_green
Not Green Open Access
Link to query for not green open access:
<- "wosNOTGREEN.bib"
file
<- convert2df(file = file , dbsource = "wos", format = "bibtex") wos_not_green
Green Final Open Access
Link to query for final open access:
<- "wosFinal.bib"
file
<- convert2df(file = file , dbsource = "wos", format = "bibtex") wos_green_final
Green Accepted Open Access
Link to query for accepted open access:
<- convert2df(file = "wosAcceptedOA1000.bib" , dbsource = "wos", format = "bibtex")
wos1000Accepteddf <- convert2df(file = "wosAcceptedrest.bib" , dbsource = "wos", format = "bibtex")
wosRESTAccepteddf <- merge(wosRESTAccepteddf, wos1000Accepteddf, all = TRUE)#Web of science has a 1000 limit for BibTex files so All Open Access needed to be downloaded into two .bib files and then merged to one wos_green_accepted